This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
Get the view using the GetView method of the NotesDatabase class.
Then use either the AllEntries method or the GetAllEntriesByKey method of the NotesView class to get the documents you want to export.
Use GetFirtsEntry/GetNextEntry methods to loop through the collection and get each NotesViewEntry.
You use the ColumnValues method of the NotesViewEntry to get the column values.
Now you just write it to a text file in CSV format.